Welcome![Sign In][Sign Up]
Location:
Search - Db matlab

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Other resource%BE%AB%CD%A8matlab%D7%DB%BA%CF%B8%A8%B5%BC%D3%EB%D

Description: MATLABThe CD-ROM accompanying this book contains MATLAB® M-files (MATLAB language source code) and Simulink® block diagram models for designing, implementing and testing control systems.
Platform: | Size: 584765 | Author: l | Hits:

[Other resourcedb-wavelet

Description: Matlab环境下利用Daubechies小波族中的db10小波对散斑退化图像进行了压缩数值仿真研究。研究表明:阈值以及分解层次的选取影响着图像压缩的质量。-Matlab environment using Daubechies wavelet tribal db10 wavelet the withdrawal of speckle image compression for the numerical simulation. Research shows : the threshold level of decomposition is influenced by the quality of image compression.
Platform: | Size: 4264 | Author: | Hits:

[Windows Developblast

Description: MATLAB ZF MMSE db.mminnorm.mmatlab,File->Set Path->Add Folder。 db-MATLAB ZF MMSE db.mminnorm.mmatlab, File -
Platform: | Size: 3148 | Author: houpengkun | Hits:

[SourceCodeCIC滤波器matlab代码

Description: CIC滤波器matlab代码 D=5; r=D; fs=1e5; S3_cic=conv(conv(ones(1,D),ones(1,D)),ones(1,D)); %三个单级卷积 [h3,f3]=freqz(S3_cic,1,1000,fs); plot(f3/(fs/2),20*log10(abs(h3))-max(20*log10(abs(h3))),'r','LineWidth',1.4) ylabel('\fontsize{12}\bf幅度响应(dB)') xlabel('\fontsize{12}\bf归一化频率(\times\pi rad/sample)') grid; box on; axis([0 1 -80, 0])
Platform: | Size: 680 | Author: 530228758@qq.com | Hits:

[matlab分解与合成

Description: 用Matlab中的Haar和Db9小波对图像进行分解和重构,并在不同阈值下用PNG格式存储重构的图像.-Matlab Haar and the right image Db9 wavelet decomposition and reconstruction, and under different thresholds with PNG format image storage remodeling.
Platform: | Size: 33792 | Author: 昂清 | Hits:

[matlab%BE%AB%CD%A8matlab%D7%DB%BA%CF%B8%A8%B5%BC%D3%EB%D

Description: MATLABThe CD-ROM accompanying this book contains MATLAB® M-files (MATLAB language source code) and Simulink® block diagram models for designing, implementing and testing control systems.-MATLABThe CD-ROM accompanying this book contains MATLAB ? M-files (MATLAB language source code) and Simulink ? block diagram models for designing, implementing and testing control systems.
Platform: | Size: 584704 | Author: l | Hits:

[Algorithmbeamforming

Description: With the interference-to-noise ratio reduced to 30 dB, plot the adaptive antenna pattern after 200 iterations of the LMS algorithm-With the interference-to-noise ratio of red uced to 30 dB. plot the adaptive antenna pattern after 200 ite rations of the LMS algorithm
Platform: | Size: 3072 | Author: 游辉章 | Hits:

[matlabfreqz_m

Description: 求取系统的绝对幅度响应、相对的db值幅度响应、相位响应和群延时响应的函数 % %db为相对振幅(dB) %mag为绝对振幅 %pha为相位响应 %grd为群延时 %w为频率样本点向量 %b为Ha(z)分子多项式系数(对FIR而言,b=h) %a为Hz(z)分母多项式系数(对FIR而言,a=1) %-strike rate system in response to the absolute and relative value range db response phase and group delay response to the response function%% db relative amplitude (dB)% mag as the absolute amplitude% of MTS Phase Response% for the group delay grd% w frequency of sample points for the vector b Ha% (z) elements polynomial coefficient (F IR, b = h)% for a Hz (z) denominator polynomial coefficient (right FIR, a = 1)%
Platform: | Size: 1024 | Author: 吴江华 | Hits:

[Waveletdb-wavelet

Description: Matlab环境下利用Daubechies小波族中的db10小波对散斑退化图像进行了压缩数值仿真研究。研究表明:阈值以及分解层次的选取影响着图像压缩的质量。-Matlab environment using Daubechies wavelet tribal db10 wavelet the withdrawal of speckle image compression for the numerical simulation. Research shows : the threshold level of decomposition is influenced by the quality of image compression.
Platform: | Size: 4096 | Author: | Hits:

[Compress-Decompress algrithmsSPIHT_matlab_code

Description: MATLAB implementation of SPIHT (without Arithmatic coding stage). % Performance evaluation : this toolbox VS. SPIHT % Test image: lena512.raw % bpp SPIHT(dB) This code(dB) % 0.1000 29.8107 29.3202 % 0.2000 32.7202 32.2514 % 0.3000 34.5479 34.0331 % 0.4000 35.8422 35.4857 % 0.5000 36.8623 36.5939 % 0.6000 37.6650 37.3759 % 0.7000 38.2581 38.0491 % 0.8000 38.9390 38.7058 % 0.9000 39.5218 39.3437 -MATLAB implementation of SPIHT (without A rithmatic coding stage). Performance evalua% tion : this toolbox VS. SPIHT%% Test image : lena512.raw%% bpp SPIHT (dB) This code (dB)% 0. 1000 29.8107 32.7202 0.2000 29.3202% 32.2514% 0.3000 0.4000 34.5479 34.0331% 35.8422 35.485 7% 0.5000 0.6000 36.8623 36.5939% 37.6650 37.3 759% 38.0491% 0.7000 0.8000 38.2581 38.9390 38 .7058 0.9000 39.5218 39.3437%
Platform: | Size: 182272 | Author: jason.. | Hits:

[Windows Developblast

Description: MATLAB ZF MMSE db.mminnorm.mmatlab,File->Set Path->Add Folder。 db-MATLAB ZF MMSE db.mminnorm.mmatlab, File-
Platform: | Size: 3072 | Author: | Hits:

[File Formatremainenergy

Description: computes the shortening-signal-to-noise ratio in dB,tail energy in dB and the effective channel impulse response-computes the shortening- signal-to-nois e ratio in dB. tail energy in dB and the effective channel impu lse response
Platform: | Size: 1024 | Author: 金岳 | Hits:

[Otherxiaobo

Description: 局部放电试验所采集的信号中往往混有白噪声、周期干扰信号去除。此处采用常用db系列小波中的db6小波进行9尺度的多分辨分解后,根据白噪声能量特性,估算各尺度的阈值大小,采用硬值进行处理,后进行重构。-Partial discharge test of the signal collected is often mixed with white noise, periodic interference signal removal. Here the use of commonly used wavelet db Series DB6 wavelet carried out in the 9-scale multiresolution decomposition, based on the energy characteristics of white noise to estimate the scale threshold size, the use of hard-value deal, after the remodeling.
Platform: | Size: 33792 | Author: rex | Hits:

[Software EngineeringFEI

Description: 假设在一个ad hoc网络中,移动节点的发射功率PTx总是恒定的。要发送数据的移动节点总是先监听信道,测量接收到的信号功率X,其中X= I + N, I为接收到的干扰,N是噪声。移动节点只有在X<INThre时,才可以发射。式中,INThre为背景噪声门限。 在仿真中,我们规定每个移动节点的发射功率是常数,PTx = 1W;接收节点接收机的灵敏度Smin = -80 dBm;信号质量 min = 2 dB;系统的背景噪声门限INThre = 1.2e-10。 -Assuming in an ad hoc network, mobile node s transmission power is always constant PTX. To send data to the mobile node always monitor channel, measuring the received signal power X, which X = I+ N, I was received interference, N is the noise. Mobile node only when X <INThre when it is fired. Where, INThre threshold for background noise. In the simulation, we require that each mobile node s transmission power is constant, PTx = 1W receiver node receiver sensitivity Smin =-80 dBm signal quality
Platform: | Size: 7168 | Author: | Hits:

[Program doc999

Description: 根据有无固定基础设施,无线局域网又可分为BSS (Basic Service Set)和IBSS (Independent Basic Service Set)。我们要研究的ad hoc网络属于后者。假设在一个ad hoc网络中,移动节点的发射功率PTx总是恒定的。要发送数据的移动节点总是先监听信道,测量接收到的信号功率X,其中X= I + N, I为接收到的干扰,N是噪声。移动节点只有在X<INThre时,才可以发射。式中,INThre为背景噪声门限。 在仿真中,我们规定每个移动节点的发射功率是常数,PTx = 1W;接收节点接收机的灵敏度Smin = -80 dBm;信号质量 min = 2 dB;系统的背景噪声门限INThre = 1.2e-10。 -According to the availability of fixed infrastructure, wireless local area network can be divided into BSS (Basic Service Set) and IBSS (Independent Basic Service Set). We have to study the ad hoc network belong to the latter. Assuming in an ad hoc network, mobile node s transmission power is always constant PTX. To send data to the mobile node always monitor channel, measuring the received signal power X, which X = I+ N, I was received interference, N is the noise. Mobile node only when X <INThre when it is fired. Where, INThre threshold for background noise. In the simulation, we require that each mobile node s transmission power is constant, PTx = 1W receiver node receiver sensitivity Smin =-80 dBm signal quality
Platform: | Size: 7168 | Author: 何炳钦 | Hits:

[Communicationadhoc

Description: 在仿真中,我们规定每个移动节点的发射功率是常数,PTx = 1W;接收节点接收机的灵敏度Smin = -80 dBm;信号质量 min = 2 dB;系统的背景噪声门限INThre = 1.2e-10-In the simulation, we require that each mobile node s transmission power is constant, PTx = 1W receiver node receiver sensitivity Smin =-80 dBm signal quality
Platform: | Size: 7168 | Author: 邓念 | Hits:

[Waveletwaveletmatlab

Description: 在matlab下用 db系列小波基 进行小波变换!-err
Platform: | Size: 107520 | Author: 草原 | Hits:

[matlabmatlab

Description: 1.此应用程序基于matlab,请确认正确安装相应版本的matlab 2.此应用程序可以读入两列纯数据,进行极坐标绘图:数据第一列为角度(单位为°),第二列为电平值(单位为dB)。 3.使用时将应用程序和数据放在matlab的路径中,比如work文件夹下。 4.对于用不同matlab版本生成的exe文件,其运行环境MCR版本也会有不同,这里分别给出了2007a和7.01的应用程序。如使用其他版本,请单独安装2007a或者7.01版本的MCRInstaller.exe(这个程序保留在安装目录下,在已安装2007a或者7.01版本的电脑上可以找到,其目录为:\MATLAB\R2007a\toolbox\compiler\deploy\win32,不同版本的MCR可以重复安装,不冲突)-None
Platform: | Size: 14336 | Author: axbt | Hits:

[matlabdb

Description: code matlab fingerprint recognition
Platform: | Size: 5440512 | Author: sori | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net